From: Ian Jackson Date: Thu, 9 Jul 2015 16:24:25 +0000 (+0100) Subject: libxl: event tests: Introduce `fdderegrace' test X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~2782 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22?a=commitdiff_plain;h=c544fd79f7cc58f01ef83bb16d710b7acdee4b8c;p=xen.git libxl: event tests: Introduce `fdderegrace' test This exercises the potential race between fd deregistration and poll(). (Because we have control of the individual steps, we can do the whole test in a single thread and ensure that the pessimal order is always reached.) Signed-off-by: Ian Jackson Acked-by: Wei Liu --- diff --git a/.gitignore b/.gitignore index 3f42ded8bd..464f3f4d50 100644 --- a/.gitignore +++ b/.gitignore @@ -289,6 +289,7 @@ tools/libxl/testidl.c tools/libxl/*.pyc tools/libxl/libxl-save-helper tools/libxl/test_timedereg +tools/libxl/test_fdderegrace tools/libxl/xen-init-dom0 tools/blktap2/control/tap-ctl tools/firmware/etherboot/eb-roms.h diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index 746ac0aaf9..6e7402553b 100644 --- a/tools/libxl/Makefile +++ b/tools/libxl/Makefile @@ -107,7 +107,7 @@ LIBXL_OBJS += libxl_genid.o LIBXL_OBJS += _libxl_types.o libxl_flask.o _libxl_types_internal.o LIBXL_TESTS += timedereg -LIBXL_TESTS_PROGS = $(LIBXL_TESTS) +LIBXL_TESTS_PROGS = $(LIBXL_TESTS) fdderegrace LIBXL_TESTS_INSIDE = $(LIBXL_TESTS) fdevent # Each entry FOO in LIBXL_TESTS has two main .c files: diff --git a/tools/libxl/test_fdderegrace.c b/tools/libxl/test_fdderegrace.c new file mode 100644 index 0000000000..b644d7afd4 --- /dev/null +++ b/tools/libxl/test_fdderegrace.c @@ -0,0 +1,56 @@ +#include "test_common.h" +#include "libxl_test_fdevent.h" + +int main(int argc, char **argv) { + int rc, i; + libxl_asyncop_how how; + libxl_event *event; + + test_common_setup(XTL_DEBUG); + + how.callback = NULL; + how.u.for_event = 1; + + int fd = open("/dev/null", O_RDONLY); + assert(fd > 0); + + rc = libxl_test_fdevent(ctx, fd, POLLIN, &how); + assert(!rc); + + test_common_beforepoll(); + + rc = libxl_ao_abort(ctx, &how); + assert(!rc); + + rc = libxl_event_check(ctx, &event, LIBXL_EVENTMASK_ALL, 0,0); + assert(!rc); + assert(event); + assert(event->for_user = how.u.for_event); + assert(event->type == LIBXL_EVENT_TYPE_OPERATION_COMPLETE); + assert(event->u.operation_complete.rc == ERROR_ABORTED); + + close(fd); + + test_common_dopoll(); + + for (i=0; i